import { Button, useTheme } from '@aws-amplify/ui-react'; // use any CSS value export const MarginAndPaddingStylePropExample = () => { return ( ); }; // use a design token from the theme object export const MarginAndPaddingThemeTokenExample = () => { const { tokens } = useTheme(); return ( ); }; // use a design token name export const MarginAndPaddingTokenNameExample = () => { return ( ); };